@charset "utf-8";
/* CSS Document */
* {
  align-items: center;
  list-style-type: none;
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a:hover {
	text-decoration: none;
	color: #FFFFFF;
}
.content {
  height: 85%;
}
body, html {
	height: 100%;
	text-align: center;
	text-indent: 0;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	clip: rect(0px,0px,0px,0px);
	color: #000000;
	background-color: #FFFFFF;
	border-color: #739F7B;
	font-size: 9px;
}
.navbar {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #739f7b;
  color: #fff;
  box-shadow: 0px 17px 59px 11px #37603e;
}
.bottombar {
	font-weight: bold;
	align-items: left;
	justify-content: space-between;
	padding: 20px;
	background-color: #E2E2E2;
	color: #709C78;
	box-shadow: 0px 17px 59px 11px #37603e;
	text-align: left;
}
.bottombar a {
  text-decoration: underline;
}

.nav-links  {
  position: relative;
  right: 40px;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
}

/* LOGO */
.logo {
	font-size: 32px;
	color: #fff;
	text-decoration: none;
}

.menu {
  text-align: right;
  justify-content: right;
  align-items: right;
}

.menu {
  max-width: 500px;
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.menu li:hover {
  background-color: #b9d0bd;
  box-shadow: 0px 0px 90px 30px #fff;
  border-radius: 100px;
  transition: 0.2s ease;
}

.head {
	position: relative;
}
.vbutton {
	position: absolute;
}
.buttonh {
  background-color: #709C78;
  border: double;
  border-color: #709C78;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}
.buttonh:hover {
	border: double;
	border-color: #FFFFFF;
	transition: 0.5s;
}
.button {
	font-size: 5.5px;
	background-color: #709C78;
	border: solid;
	border-color: #9FBBA4;
	color: white;
	padding: 19px 0px;
	text-decoration: none;
	display: inline-block;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 100px;
	border-width: 7px;
	text-align: center;
}
.button1 {
	font-size: 25px;
	background: #5865F2;
	border: solid;
	border-color: #818AF5;
	color: white;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
 	margin: 4px 2px;
	cursor: pointer;
	border-radius: 100px;
	border-width: 7px;
}
.button2 {
	font-size: 25px;
	background-color: #FF0004;
	border: solid;
	border-color: #FF7577;
	color: white;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
 	margin: 4px 2px;
	cursor: pointer;
	border-radius: 100px;
	border-width: 7px;
}
.button3 {
	font-size: 25px;
	border: solid;
	border-color: #000000;
	color: #FFFFFF;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
 	margin: 4px 2px;
	cursor: pointer;
	border-radius: 100px;
	border-width: 7px;
  background: linear-gradient(to left, #00F2EA, #EE1D52);
}
.formbutton {
	font-size: 50px;
	border: solid;
	border-color: #739f7b;
	color: #739f7b;
	padding: 35px 40px;
	text-align: center;
	text-decoration: none;
	border-radius: 30px;
	border-width: 15px;
	cursor: pointer;
	background-color: #FFFFFF;
}
.card-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}
.card {
  width: 325px;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  margin: 20px;
}
.card img {
  width: 100%
}
.card-content {
  padding: 16px;
}
.card-content h3 {
  color: #739f7b;
  font-size: 28px;
  margin-bottom: 8px;
}
.card-content p {
  color: #739f7b;
  font-size: 15px;
  line-height: 1.3;
}
/* DROPDOWN MENU */
.dropdown {
  background: rgba(115,159,123,.2);
  width: 100%;
  margin: 0;
  padding: 5px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}
.drop-links {
  font-size: 20px;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 750px) {
  .navbar {
    justify-content: center;
  }
  .menu li {
    display: none;
  }

  .dropdown .drop-links {
    display: block;
  }
}
@media (min-width: 750px) {
  .dropdown {
    display: none;
  }
  .dropdown .drop-links {
    display: none;
  }
}